cody - HTMLify profile

cody
4270 Files
632090 Views
Latest files of /cody/vishal-dcode/Event KeyCodes
const insert = document.getElementById("insert");
window.addEventListener("keydown", (e) => {
insert.innerHTML = `
<div class="key">
${e.key === " " ? "Space" : e.key}
<small>event.key</small>
</div>
window.addEventListener("keydown", (e) => {
insert.innerHTML = `
<div class="key">
${e.key === " " ? "Space" : e.key}
<small>event.key</small>
</div>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {